home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / ctoolwrk.lbr / READIN1.C < prev    next >
Text File  |  1985-09-27  |  384b  |  22 lines

  1. /*               READIN1.C                            */
  2. /* to read information form keyboard into file "file" */
  3.  
  4. char x;
  5.  
  6. main()
  7.  
  8. {
  9.  
  10. fopen("file","w");
  11.  
  12.    {
  13.     while((x = getchar())  !=  '\21')
  14.  
  15.           putc(x,1);
  16.      }
  17.  
  18.  
  19. fclose(1);
  20.  
  21.  
  22. }